six-updater-web 0.18.2 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. data/Rakefile +1 -1
  2. data/lib/six-updater-web/app/controllers/appsettings_controller.rb +4 -2
  3. data/lib/six-updater-web/app/controllers/main_controller.rb +19 -48
  4. data/lib/six-updater-web/app/controllers/mods_controller.rb +1 -0
  5. data/lib/six-updater-web/app/helpers/appsettings_helper.rb +8 -0
  6. data/lib/six-updater-web/app/helpers/mods_helper.rb +8 -0
  7. data/lib/six-updater-web/app/models/appsetting.rb +58 -0
  8. data/lib/six-updater-web/app/models/arma2_appsetting.rb +6 -0
  9. data/lib/six-updater-web/app/models/arma2_mod.rb +3 -0
  10. data/lib/six-updater-web/app/models/arma2_oa_appsetting.rb +16 -0
  11. data/lib/six-updater-web/app/models/arma2_oa_co_appsetting.rb +13 -0
  12. data/lib/six-updater-web/app/models/arma2_oa_co_mod.rb +3 -0
  13. data/lib/six-updater-web/app/models/arma2_oa_mod.rb +3 -0
  14. data/lib/six-updater-web/app/models/arma2_oa_st_appsetting.rb +3 -0
  15. data/lib/six-updater-web/app/models/arma2_oa_st_mod.rb +3 -0
  16. data/lib/six-updater-web/app/models/arma2_st_appsetting.rb +3 -0
  17. data/lib/six-updater-web/app/models/arma2_st_mod.rb +3 -0
  18. data/lib/six-updater-web/app/models/mod.rb +31 -3
  19. data/lib/six-updater-web/app/models/queryserver.rb +10 -1
  20. data/lib/six-updater-web/app/views/main/_check.haml +4 -0
  21. data/lib/six-updater-web/app/views/main/index.haml +3 -3
  22. data/lib/six-updater-web/config/six-updater-web.rb +1 -1
  23. data/lib/six-updater-web/db/migrate/20100520101653_add_type_to_mods_and_appsettings.rb +11 -0
  24. data/lib/six-updater-web/db/migrate/20100520101654_add_beta_to_appsettings.rb +9 -0
  25. data/lib/six-updater-web/db/migrate/20100520101655_add_defaults_to_type.rb +11 -0
  26. data/lib/six-updater-web/db/schema.rb +6 -3
  27. data/lib/six-updater-web/vendor/plugins/six-app_manager/lib/six/appmanager.rb +7 -4
  28. metadata +17 -4
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/testtask'
7
7
 
8
8
  spec = Gem::Specification.new do |s|
9
9
  s.name = 'six-updater-web'
10
- s.version = '0.18.2'
10
+ s.version = '0.19.0'
11
11
  s.has_rdoc = false
12
12
  #s.extra_rdoc_files = ['README', 'LICENSE']
13
13
  s.summary = 'Your summary here'
@@ -1,6 +1,6 @@
1
1
  class AppsettingsController < ApplicationController
2
2
  record_select :per_page => 10, :search_on => "name", :order_by => "name ASC", :full_text_search => true
3
- active_scaffold :appsettings do |config|
3
+ active_scaffold :appsetting do |config|
4
4
  config = self # Ruby19 compatibility
5
5
  config.label = "Settings Profiles"
6
6
  config.columns = [
@@ -11,6 +11,8 @@ class AppsettingsController < ApplicationController
11
11
  :logpath,
12
12
  :params,
13
13
  :sixconfigs,
14
+ :beta,
15
+ :type,
14
16
  # :created_at,
15
17
  :updated_at
16
18
  ]
@@ -20,7 +22,7 @@ class AppsettingsController < ApplicationController
20
22
 
21
23
  config.list.sorting = { :name => :asc }
22
24
 
23
- [:name, :exe, :path, :modpath, :logpath, :params].each do |column|
25
+ [:name, :exe, :path, :modpath, :logpath, :params, :beta].each do |column|
24
26
  config.columns[column].inplace_edit = true
25
27
  end
26
28
  end
@@ -195,7 +195,7 @@ class MainController < ApplicationController
195
195
  @msg << "Using preset: #{preset.name}"
196
196
  else
197
197
  @msg << "No preset selected!"
198
- act
198
+ act(setting, preset, action, server)
199
199
  return
200
200
  end
201
201
 
@@ -228,16 +228,21 @@ class MainController < ApplicationController
228
228
  end
229
229
  end
230
230
 
231
- @msg << "Resetting skip status." if reset
232
-
233
- setting = Appsetting.new unless setting
231
+ if setting
232
+ setting.type = "Arma2Appsetting" if setting.type.nil? || setting.type.empty?
233
+ setting.save
234
+ setting = Arma2Appsetting.find(setting.id)
235
+ else
236
+ setting = Arma2Appsetting.new
237
+ end
234
238
 
239
+ @msg << "Resetting skip status." if reset
235
240
  if setting.real_path
236
241
  unless File.directory?(setting.real_path)
237
242
  @msg << "<br /><b>WARNING:</b> ArmA folder not set or non existent: #{setting.real_path}"
238
243
  end
239
244
  else
240
- @msg << "<br /><b>WARNING:</b> ArmA folder not set or non existent: #{setting.real_path}"
245
+ @msg << "<br /><b>WARNING:</b> ArmA folder not set or non existent: #{setting.real_path}"
241
246
  end
242
247
 
243
248
  if setting.modpath
@@ -259,6 +264,7 @@ class MainController < ApplicationController
259
264
  mod.update_skip if @autoskip
260
265
  end
261
266
  mod.save unless mod.new_record?
267
+ mod.disabled = true if !mod.version_match?(setting)
262
268
  if mod.disabled
263
269
  @disabled << mod
264
270
  next
@@ -280,7 +286,7 @@ class MainController < ApplicationController
280
286
  return
281
287
 
282
288
  when "show"
283
- redirect_to "/queryservers/show/#{params[:gamespy]}"
289
+ redirect_to "/queryservers/edit/#{params[:gamespy]}"
284
290
  return
285
291
 
286
292
  when "save"
@@ -310,14 +316,14 @@ class MainController < ApplicationController
310
316
  @check.sort! { |a, b| a.name <=> b.name }
311
317
  @install.sort! { |a, b| a.name <=> b.name }
312
318
  @disabled.sort! { |a, b| a.name <=> b.name }
313
- act
319
+ act(setting, preset, action, server)
314
320
  end
315
321
 
316
322
  def fetch
317
323
  @system_setting = SystemSetting.singleton
318
324
  setting = nil
319
325
  setting = Sixconfig.find(@system_setting.favorite_preset).appsetting unless @system_setting.favorite_preset.empty?
320
- setting = Appsetting.new unless setting
326
+ setting = Arma2Appsetting.new unless setting
321
327
  @msg = []
322
328
 
323
329
  case params["commit"].downcase
@@ -399,46 +405,11 @@ class MainController < ApplicationController
399
405
  end
400
406
 
401
407
  private
402
- def act
403
- @preset = if @system_setting.favorite_preset
404
- begin
405
- Sixconfig.find(@system_setting.favorite_preset.to_s)
406
- rescue
407
- Sixconfig.new
408
- end
409
- else
410
- Sixconfig.new
411
- end
412
-
413
- @server = if @system_setting.favorite_server
414
- begin
415
- Server.find(@system_setting.favorite_server.to_s)
416
- rescue
417
- Server.new
418
- end
419
- else
420
- Server.new
421
- end
422
-
423
- @action = if @system_setting.favorite_action
424
- begin
425
- Action.find(@system_setting.favorite_action.to_s)
426
- rescue
427
- Action.new
428
- end
429
- else
430
- Action.new
431
- end
432
-
433
- @setting = if @system_setting.favorite_settings_profile
434
- begin
435
- Appsetting.find(@system_setting.favorite_settings_profile.to_s)
436
- rescue
437
- Appsetting.new
438
- end
439
- else
440
- Appsetting.new
441
- end
408
+ def act(setting, preset, action, server)
409
+ @preset = preset ? preset : Sixconfig.new
410
+ @server = server ? server : Queryserver.new
411
+ @action = action ? action : Action.new
412
+ @setting = setting ? setting : Arma2Appsetting.new
442
413
  end
443
414
 
444
415
  def fetch_param(ar, ty, default = nil)
@@ -9,6 +9,7 @@ class ModsController < ApplicationController
9
9
  :size,
10
10
  :categories,
11
11
  :path,
12
+ :type,
12
13
  :sixconfigs,
13
14
  :networks,
14
15
  :queryservers,
@@ -14,4 +14,12 @@ module AppsettingsHelper
14
14
  def logpath_column(record, b = nil)
15
15
  record.real_logpath
16
16
  end
17
+
18
+ def type_column(record, b = nil)
19
+ record.class.label
20
+ end
21
+
22
+ def type_form_column(record, t, options)
23
+ collection_select(:record, :type, ["Arma2Appsetting", "Arma2OaAppsetting"], :to_s, :to_s, {}, {:name => options[:name]})
24
+ end
17
25
  end
@@ -9,4 +9,12 @@ module ModsHelper
9
9
  0
10
10
  end
11
11
  end
12
+
13
+ def type_column(record, b = nil)
14
+ record.class.label
15
+ end
16
+
17
+ def type_form_column(record, t, options)
18
+ collection_select(:record, :type, ["Arma2Mod", "Arma2StMod", "Arma2OaMod", "Arma2OaStMod", "Arma2OaCoMod"], :to_s, :to_s, {:name => options[:name]})
19
+ end
12
20
  end
@@ -5,6 +5,30 @@ class Appsetting < ActiveRecord::Base
5
5
  has_many :sixconfigs
6
6
  six_guid
7
7
 
8
+ DEFAULT_EXE = "arma2.exe"
9
+ DEFAULT_EXE_PATH = ""
10
+ DEFAULT_BETA_EXE = "arma2.exe"
11
+ DEFAULT_BETA_EXE_PATH = "beta"
12
+ # TODO: Auto beta mod even?
13
+ DEFAULT_PARAMS = "-showScriptErrors -noSplash -noFilePatching"
14
+ DEFAULT_MODS_PARAM = "-mod=" # TODO
15
+ DEFAULT_BETA_MODS = ["beta"]
16
+
17
+ REGKEY = ['SOFTWARE\\Bohemia Interactive Studio\\ArmA 2', 'MAIN']
18
+
19
+ # TODO: Windows-only
20
+ DEFAULT_PATH = begin; Win32::Registry.open(Win32::Registry::HKEY_LOCAL_MACHINE, REGKEY[0])[REGKEY[1]]; rescue; nil; end
21
+
22
+ =begin
23
+ before_save :check_values
24
+ def check_values
25
+ # TODO: Fix hardcoding
26
+ if self.type.nil? || !(["Appsetting", "Arma2Appsetting", "Arma2OaAppsetting"].include?(self.type))
27
+ self.type = "Appsetting"
28
+ end
29
+ end
30
+ =end
31
+
8
32
  def to_updater_yml
9
33
  hash = Hash.new
10
34
  attribute_names.each do |at|
@@ -15,4 +39,38 @@ class Appsetting < ActiveRecord::Base
15
39
  end
16
40
  hash
17
41
  end
42
+
43
+ def found_type
44
+ case self.real_exe
45
+ when "arma2.exe"
46
+ Arma2StAppsetting.found_type
47
+ when "arma2oa.exe"
48
+ Arma2OaAppsetting.found_type
49
+ else
50
+ self.class
51
+ end
52
+ end
53
+
54
+ def self.label
55
+ self.to_s.sub("Appsetting", "")
56
+ end
57
+
58
+ def found_types
59
+ self.found_type.types
60
+ end
61
+
62
+ def nice_found_type
63
+ self.found_type.label
64
+ end
65
+
66
+ def self.types
67
+ return [Arma2Appsetting] if self == Appsetting
68
+ t = []
69
+ e = self
70
+ until e.nil? || [Appsetting, ActiveRecord::Base].include?(e) do
71
+ t << e
72
+ e = e.superclass
73
+ end
74
+ t
75
+ end
18
76
  end
@@ -0,0 +1,6 @@
1
+ class Arma2Appsetting < Appsetting
2
+ # Default game (Appsetting) is atm arma2
3
+ def found_type
4
+ return self.class
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2Mod < Mod
2
+ #Code here
3
+ end
@@ -0,0 +1,16 @@
1
+ class Arma2OaAppsetting < Arma2Appsetting
2
+ DEFAULT_EXE = "arma2oa.exe"
3
+ DEFAULT_BETA_EXE = "arma2oa.exe"
4
+ DEFAULT_BETA_EXE_PATH = "expansion/beta"
5
+ REGKEY = ['SOFTWARE\\Bohemia Interactive Studio\\ArmA 2 OA', 'MAIN']
6
+
7
+ def found_type
8
+ return self.class unless self.real_path
9
+ # TODO: Alternative ways to figure out the edition? Find arma2.exe? etc
10
+ if File.directory?(File.join(self.real_path, "Addons")) && File.exists?(File.join(self.real_path, "Addons", "Chernarus.pbo"))
11
+ Arma2OaCoAppsetting
12
+ else
13
+ Arma2OaStAppsetting
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,13 @@
1
+ class Arma2OaCoAppsetting < Arma2OaAppsetting
2
+ #Code here
3
+
4
+ # TODO: Evaluate
5
+ # Perhaps look at adding a boolean: specific, so when it is enabled, non of the inherited editions can be used?
6
+ # Since Arma2 standalone addons should work on OaCo, yet you would loose the specific 'arma2standalone only' option
7
+
8
+ =begin
9
+ def found_types
10
+ [Arma2OaCoAppsetting, Arma2OaAppsetting, Arma2StAppsetting, Arma2Appsetting]
11
+ end
12
+ =end
13
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2OaCo < Arma2OaStMod
2
+ #Code here
3
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2OaMod < Arma2Mod
2
+ #Code here
3
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2OaStAppsetting < Arma2OaAppsetting
2
+ #Code here
3
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2OaStMod < Arma2OaMod
2
+ #Code here
3
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2StAppsetting < Arma2Appsetting
2
+ #Code here
3
+ end
@@ -0,0 +1,3 @@
1
+ class Arma2StMod < Arma2Mod
2
+ #Code here
3
+ end
@@ -12,15 +12,43 @@ class Mod < ActiveRecord::Base
12
12
 
13
13
  six_guid
14
14
 
15
- def all_dependentmods
16
- mods = []
15
+
16
+ def all_dependentmods(mods = [])
17
17
  self.mods.each do |mod|
18
+ next if mods.include?(mod)
18
19
  mods << mod
19
- mods += mod.all_dependentmods
20
+ mods += mod.all_dependentmods(mods)
20
21
  end
21
22
  mods.uniq
22
23
  end
23
24
 
25
+
26
+ # arma2 mod: works for all subclasses
27
+ # armaoa mod; works for arma2-oa-st, arma2-oa-
28
+ def self.label
29
+ self.to_s.sub("Mod", "")
30
+ end
31
+
32
+ def self.types
33
+ return [Arma2Mod] if self.class == Appsetting
34
+ e = self
35
+ unless e.nil? || [Mod, ActiveRecord::Base].include?(e)
36
+ types << e.label
37
+ e = e.class
38
+ end
39
+ types
40
+ end
41
+
42
+ def version_match?(setting)
43
+ # setting.type == "ArmA2OaSt" (Arma2Oa, ArmA2)
44
+ # self.type == "ArmA2"
45
+
46
+ # setting.type == "ArmA2OaSt" (ArmA2Oa, ArmA2)
47
+ # self.type == "ArmA2Oa"
48
+ return nil if setting.nil?
49
+ self.type.nil? ? true : setting.found_types.map{|e| e.label }.include?(self.class.label)
50
+ end
51
+
24
52
  def real_name
25
53
  return unless self.name
26
54
  case RUBY_PLATFORM
@@ -16,7 +16,16 @@ class Queryserver < ActiveRecord::Base
16
16
  end
17
17
 
18
18
  def to_label
19
- "#{self.name} (v#{self.gamever})"
19
+ "#{self.name} (#{self.game})"
20
+ end
21
+
22
+ def game
23
+ if self.gamever
24
+ # TODO: Figure out how to determine Combined Ops or Standalone
25
+ self.gamever[/^(1\.[0-9]*)/]
26
+ return nil unless $1
27
+ $1.to_f < 1.5 ? "A2" : "OA"
28
+ end
20
29
  end
21
30
 
22
31
  def mods_fetch
@@ -6,6 +6,8 @@
6
6
  %th Latest
7
7
  %th Remote
8
8
  %th Changelog
9
+ %th Type
10
+ %th Fits edition?
9
11
  %tbody
10
12
  - mods.each do |mod|
11
13
  %tr
@@ -16,3 +18,5 @@
16
18
  %td= mod.version
17
19
  %td= link_to "Info", "http://updater.dev-heaven.net/mods/show/#{mod.id}", :target => "_blank"
18
20
  %td= link_to "Changelog", "http://updater.dev-heaven.net/mods/changelog/#{mod.id}", :target => "_blank"
21
+ %td= mod.class.label
22
+ %td= mod.version_match?(@setting)
@@ -28,9 +28,9 @@
28
28
  = submit_tag "Sync", :name => "serversync"
29
29
  %p
30
30
  %label{ :for => "settings" }
31
- = link_to "Setting", "/appsettings", :title => "Click to access Settings Profiles overview"
31
+ = link_to "Setting", "/appsettings", :title => "Click to access Settings Profiles overview"
32
32
  &nbsp;
33
- = record_select_field 'setting', @setting
33
+ = record_select_field 'setting', @setting, :controller => "Appsettings"
34
34
  %p
35
35
  = submit_tag "Execute"
36
36
  &nbsp;
@@ -61,7 +61,7 @@
61
61
  %table{ :border => 1, :cellpadding => "5", :width => "100%"}
62
62
  %tr
63
63
  %td
64
- Autoskip: #{@autoskip ? @autoskip : false}.
64
+ Edition: #{link_to @setting.nice_found_type, nil, :title => "Supports mods for: #{@setting.found_types.map{|e| e.label}.join(", ")}" } Autoskip: #{@autoskip ? @autoskip : false}.
65
65
  Last sync
66
66
  - if @system_setting.synchronized_at
67
67
  = time_ago_in_words(@system_setting.synchronized_at)
@@ -22,7 +22,7 @@ case RUBY_VERSION
22
22
  end
23
23
 
24
24
  module SixUpdaterWeb
25
- VERSION = "0.18.2"
25
+ VERSION = "0.19.0"
26
26
  COMPONENT = "six-updater-web"
27
27
 
28
28
  DEFAULT_IP = "127.0.0.1" unless defined?(DEFAULT_IP)
@@ -0,0 +1,11 @@
1
+ class AddTypeToModsAndAppsettings < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :mods, :type, :string
4
+ add_column :appsettings, :type, :string
5
+ end
6
+
7
+ def self.down
8
+ remove_column :mods, :type
9
+ remove_column :appsettings, :type
10
+ end
11
+ end
@@ -0,0 +1,9 @@
1
+ class AddBetaToAppsettings < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :appsettings, :beta, :boolean
4
+ end
5
+
6
+ def self.down
7
+ remove_column :appsettings, :beta
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ class AddDefaultsToType < ActiveRecord::Migration
2
+ def self.up
3
+ change_column :appsettings, :type, :string, :default => "Appsetting"
4
+ change_column :mods, :type, :string, :default => "Mod"
5
+ end
6
+
7
+ def self.down
8
+ change_column :appsettings, :type, :string, :default => nil
9
+ change_column :mods, :type, :string, :default => nil
10
+ end
11
+ end
@@ -9,7 +9,7 @@
9
9
  #
10
10
  # It's strongly recommended to check this file into your version control system.
11
11
 
12
- ActiveRecord::Schema.define(:version => 20100520101652) do
12
+ ActiveRecord::Schema.define(:version => 20100520101655) do
13
13
 
14
14
  create_table "actions", :id => false, :force => true do |t|
15
15
  t.string "id", :limit => 36, :null => false
@@ -20,7 +20,7 @@ ActiveRecord::Schema.define(:version => 20100520101652) do
20
20
  end
21
21
 
22
22
  create_table "appsettings", :id => false, :force => true do |t|
23
- t.string "id", :limit => 36, :null => false
23
+ t.string "id", :limit => 36, :null => false
24
24
  t.string "name"
25
25
  t.string "path"
26
26
  t.string "exe"
@@ -29,6 +29,8 @@ ActiveRecord::Schema.define(:version => 20100520101652) do
29
29
  t.datetime "updated_at"
30
30
  t.string "logpath"
31
31
  t.string "modpath"
32
+ t.string "type", :default => "Appsetting"
33
+ t.boolean "beta"
32
34
  end
33
35
 
34
36
  create_table "categories", :id => false, :force => true do |t|
@@ -176,7 +178,7 @@ ActiveRecord::Schema.define(:version => 20100520101652) do
176
178
  end
177
179
 
178
180
  create_table "mods", :id => false, :force => true do |t|
179
- t.string "id", :limit => 36, :null => false
181
+ t.string "id", :limit => 36, :null => false
180
182
  t.string "name"
181
183
  t.datetime "created_at"
182
184
  t.datetime "updated_at"
@@ -189,6 +191,7 @@ ActiveRecord::Schema.define(:version => 20100520101652) do
189
191
  t.integer "size", :default => 0
190
192
  t.integer "size_wd", :default => 0
191
193
  t.datetime "updated_version"
194
+ t.string "type", :default => "Mod"
192
195
  end
193
196
 
194
197
  create_table "mods_networks", :id => false, :force => true do |t|
@@ -138,14 +138,17 @@ module Six
138
138
  end
139
139
 
140
140
  module Appsetting
141
- # TODO: More generic? Instead of arma specific?
142
141
  def path_by_registry
143
- SixUpdaterWeb::ARMA_PATH
142
+ self.class::DEFAULT_PATH
144
143
  end
145
144
 
146
145
  def real_exe
147
146
  if exe.nil?
148
- "arma2.exe"
147
+ if self.beta
148
+ self.class::DEFAULT_BETA_EXE_PATH.size == 0 ? self.class::DEFAULT_BETA_EXE : "#{self.class::DEFAULT_BETA_EXE_PATH}/#{self.class::DEFAULT_BETA_EXE}"
149
+ else
150
+ self.class::DEFAULT_EXE_PATH.size == 0 ? self.class::DEFAULT_EXE : "#{self.class::DEFAULT_EXE_PATH}/#{self.class::DEFAULT_EXE}"
151
+ end
149
152
  else
150
153
  exe
151
154
  end
@@ -153,7 +156,7 @@ module Six
153
156
 
154
157
  def real_params
155
158
  if params.nil?
156
- "-noSplash -noFilePatching -showScriptErrors"
159
+ self.class::DEFAULT_PARAMS
157
160
  else
158
161
  params
159
162
  end
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 18
8
- - 2
9
- version: 0.18.2
7
+ - 19
8
+ - 0
9
+ version: 0.19.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Sickboy
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-10 00:00:00 +02:00
17
+ date: 2010-07-11 00:00:00 +02:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -156,6 +156,16 @@ files:
156
156
  - lib/six-updater-web/app/helpers/system_settings_helper.rb
157
157
  - lib/six-updater-web/app/models/action.rb
158
158
  - lib/six-updater-web/app/models/appsetting.rb
159
+ - lib/six-updater-web/app/models/arma2_appsetting.rb
160
+ - lib/six-updater-web/app/models/arma2_mod.rb
161
+ - lib/six-updater-web/app/models/arma2_oa_appsetting.rb
162
+ - lib/six-updater-web/app/models/arma2_oa_co_appsetting.rb
163
+ - lib/six-updater-web/app/models/arma2_oa_co_mod.rb
164
+ - lib/six-updater-web/app/models/arma2_oa_mod.rb
165
+ - lib/six-updater-web/app/models/arma2_oa_st_appsetting.rb
166
+ - lib/six-updater-web/app/models/arma2_oa_st_mod.rb
167
+ - lib/six-updater-web/app/models/arma2_st_appsetting.rb
168
+ - lib/six-updater-web/app/models/arma2_st_mod.rb
159
169
  - lib/six-updater-web/app/models/category.rb
160
170
  - lib/six-updater-web/app/models/log.rb
161
171
  - lib/six-updater-web/app/models/logsession.rb
@@ -241,6 +251,9 @@ files:
241
251
  - lib/six-updater-web/db/migrate/20100520101650_add_more_indexes.rb
242
252
  - lib/six-updater-web/db/migrate/20100520101651_remove_id_from_dependentmods.rb
243
253
  - lib/six-updater-web/db/migrate/20100520101652_create_categories.rb
254
+ - lib/six-updater-web/db/migrate/20100520101653_add_type_to_mods_and_appsettings.rb
255
+ - lib/six-updater-web/db/migrate/20100520101654_add_beta_to_appsettings.rb
256
+ - lib/six-updater-web/db/migrate/20100520101655_add_defaults_to_type.rb
244
257
  - lib/six-updater-web/db/schema.rb
245
258
  - lib/six-updater-web/doc/README_FOR_APP
246
259
  - lib/six-updater-web/init.rb