Skip to content

Commit

Permalink
remove some unused and update wxs and plist
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Sep 27, 2024
1 parent f2aa53b commit cb584e6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.16"
version = "0.1.17"
authors = ["Raphael Amorim <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -27,13 +27,13 @@ documentation = "https://github.com/raphamorim/rio#readme"
# Note: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
# Sugarloaf example uses path when used locally, but uses
# version from crates.io when published.
sugarloaf = { path = "sugarloaf", version = "0.1.16" }
corcovado = { path = "corcovado", version = "0.1.16" }
rio-config = { path = "rio-config", version = "0.1.16" }
rio-proc-macros = { path = "rio-proc-macros", version = "0.1.16" }
teletypewriter = { path = "teletypewriter", version = "0.1.16" }
rio-backend = { path = "rio-backend", version = "0.1.16" }
rio-window = { path = "rio-window", version = "0.1.16", default-features = false }
sugarloaf = { path = "sugarloaf", version = "0.1.17" }
corcovado = { path = "corcovado", version = "0.1.17" }
rio-config = { path = "rio-config", version = "0.1.17" }
rio-proc-macros = { path = "rio-proc-macros", version = "0.1.17" }
teletypewriter = { path = "teletypewriter", version = "0.1.17" }
rio-backend = { path = "rio-backend", version = "0.1.17" }
rio-window = { path = "rio-window", version = "0.1.17", default-features = false }
wa = { path = "wa", version = "0.1.7" }

# Own dependencies
Expand Down
2 changes: 1 addition & 1 deletion misc/osx/Rio.app/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<key>CFBundleIconFile</key>
<string>rio.icns</string>
<key>CFBundleShortVersionString</key>
<string>0.1.16</string>
<string>0.1.17</string>
<key>CFBundleVersion</key>
<string>20230528.115631</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion misc/windows/rio.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a8"
Language="1033"
Codepage="1252"
Version="0.1.16"
Version="0.1.17"
Manufacturer="Raphael Amorim"
InstallerVersion="200">

Expand Down
2 changes: 0 additions & 2 deletions rio-backend/src/crosswords/grid/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ impl<T: GridSquare + Default + PartialEq + Clone> Grid<T> {
}

/// Update the size of the scrollback history.
#[allow(dead_code)]
pub fn update_history(&mut self, history_size: usize) {
let current_history_size = self.history_size();
if current_history_size > history_size {
Expand Down Expand Up @@ -264,7 +263,6 @@ impl<T: GridSquare + Default + PartialEq + Clone> Grid<T> {
}

/// Completely reset the grid state.
#[allow(dead_code)]
pub fn reset<D>(&mut self)
where
T: ResetDiscriminant<D>,
Expand Down

0 comments on commit cb584e6

Please sign in to comment.